home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / DATASORC.ZIP / TEST.DP_ / TEST.DP
Encoding:
Text File  |  1996-02-26  |  210 b   |  14 lines

  1. program Test;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {MainForm},
  6.   Employee in 'EMPLOYEE.PAS' {EmployeeForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TMainForm, MainForm);
  12.   Application.Run;
  13. end.
  14.